41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
/* Specify ECMAScript target version */
|
|
"target": "es6",
|
|
/* Specify module code generation */
|
|
"module": "esnext",
|
|
/* Specify library files to be included in the compilation. */
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM"
|
|
],
|
|
"experimentalDecorators": true,
|
|
/* Specify JSX code generation */
|
|
"jsx": "react",
|
|
/* Generate corresponding .map files */
|
|
"sourceMap": true,
|
|
/* Enable all strict type-checking options */
|
|
"strict": false,
|
|
/* Specify module resolution strategy */
|
|
"moduleResolution": "node",
|
|
/* Base directory to resolve non-absolute module names */
|
|
/*"baseUrl": "./",*/
|
|
/* Maps imports to locations - e.g. ~models will go to ./src/models */
|
|
/*"paths": {
|
|
"*": ["./*"]
|
|
},*/
|
|
/* List of folders to include type definitions from */
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
],
|
|
/* allow import React instead of import * as React */
|
|
"allowSyntheticDefaultImports": true,
|
|
/* Emit interop between CommonJS and ES modules */
|
|
"esModuleInterop": true
|
|
},
|
|
"include": ["./src/**/*", "./*.d.ts"],
|
|
"exclude": [
|
|
"**/*.spec.ts",
|
|
"./node_modules/**/*.ts"
|
|
]
|
|
} |