20 lines
394 B
JSON
20 lines
394 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"outDir": "./public/",
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"module": "es6",
|
||
|
|
"target": "es5",
|
||
|
|
"strict": true,
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"allowJs": true,
|
||
|
|
"baseUrl": "./",
|
||
|
|
"typeRoots": ["js/types", "node_modules/@types"]
|
||
|
|
},
|
||
|
|
"ts-node": {
|
||
|
|
"compilerOptions": {
|
||
|
|
"module": "commonjs"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|