29 lines
619 B
JSON
29 lines
619 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"jsx": "react",
|
|
"reactNamespace": "React",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"strict": true,
|
|
"strictPropertyInitialization": false,
|
|
"outDir": "dist/node",
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"incremental": true,
|
|
"esModuleInterop": true,
|
|
"importHelpers": true
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|