33 lines
559 B
JSON
33 lines
559 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"outDir": "./dist/",
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"module": "ESNext",
|
||
|
|
"target": "es5",
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"allowJs": true,
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"*": [
|
||
|
|
"./src/*"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"strict": true
|
||
|
|
},
|
||
|
|
"ts-node": {
|
||
|
|
"compilerOptions": {
|
||
|
|
"module": "CommonJS"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
".fttemplates/**/*",
|
||
|
|
"node_modules",
|
||
|
|
"dist"
|
||
|
|
]
|
||
|
|
}
|