2020-02-14 23:20:24 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./dist",
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
2020-02-22 23:29:33 +00:00
|
|
|
// target settings for node js
|
2020-02-14 23:20:24 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es2018",
|
|
|
|
"lib": ["es2018"],
|
|
|
|
|
|
|
|
// other best practice configs
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": false, // <-- get rid of this!
|
|
|
|
"removeComments": false, // <-- do not remove comments (needed for @deprecated notices etc)
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"composite": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"isolatedModules": false,
|
|
|
|
"declaration": true
|
|
|
|
},
|
|
|
|
"exclude": ["node_modules", "**/__tests__"],
|
|
|
|
"include": ["./src"]
|
|
|
|
}
|