15 lines
543 B
JSON
15 lines
543 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/", // path to output directory
|
|
"sourceMap": true, // allow sourcemap support
|
|
"strictNullChecks": true, // enable strict null checks as a best practice
|
|
"module": "es6", // specify module code generation
|
|
"jsx": "react-jsx", // use typescript to transpile jsx to js
|
|
"target": "es5", // specify ECMAScript target version
|
|
"allowJs": true, // allow a partial TypeScript and JavaScript codebase
|
|
"moduleResolution": "node",
|
|
"baseUrl": "./src",
|
|
},
|
|
"include": ["src"]
|
|
}
|