2015-09-15 06:23:36 -05:00
|
|
|
{
|
2018-07-25 09:16:33 -05:00
|
|
|
"compilerOptions": {
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"outDir": "public/dist",
|
|
|
|
"target": "es5",
|
2018-08-30 01:33:29 -05:00
|
|
|
"lib": ["es6", "dom"],
|
2019-01-09 02:40:57 -06:00
|
|
|
"rootDirs": ["public/"],
|
2018-07-25 09:16:33 -05:00
|
|
|
"jsx": "react",
|
|
|
|
"module": "esnext",
|
|
|
|
"declaration": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2018-08-30 01:33:29 -05:00
|
|
|
"importHelpers": true,
|
|
|
|
"noEmitHelpers": true,
|
|
|
|
"removeComments": false,
|
2018-07-25 09:16:33 -05:00
|
|
|
"inlineSourceMap": false,
|
|
|
|
"sourceMap": true,
|
|
|
|
"noEmitOnError": false,
|
|
|
|
"emitDecoratorMetadata": false,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"noImplicitReturns": true,
|
2018-08-30 01:53:13 -05:00
|
|
|
"noImplicitThis": true,
|
2018-07-25 09:16:33 -05:00
|
|
|
"noImplicitUseStrict": false,
|
|
|
|
"noImplicitAny": false,
|
2019-03-12 11:55:01 -05:00
|
|
|
"downlevelIteration": true,
|
2018-07-25 09:16:33 -05:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"baseUrl": "public",
|
|
|
|
"pretty": true,
|
2018-12-25 01:55:44 -06:00
|
|
|
"typeRoots": ["node_modules/@types", "types"],
|
2018-07-25 09:16:33 -05:00
|
|
|
"paths": {
|
2019-01-14 02:45:55 -06:00
|
|
|
"app": ["app"],
|
|
|
|
"sass": ["sass"]
|
2018-07-25 09:16:33 -05:00
|
|
|
}
|
|
|
|
},
|
2019-03-06 07:22:59 -06:00
|
|
|
"include": ["public/app/**/*.ts", "public/app/**/*.tsx", "public/test/**/*.ts", "public/vendor/**/*.ts"]
|
2018-08-30 01:33:29 -05:00
|
|
|
}
|