14 lines
317 B
JSON
14 lines
317 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"alwaysStrict": true,
|
|
"target": "es2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"outDir": "./lib",
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
}
|