2022-02-26 16:13:35 -08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": "app/",
|
2022-05-04 12:24:58 -07:00
|
|
|
"outDir": "build/",
|
2022-02-26 16:13:35 -08:00
|
|
|
"sourceMap": true,
|
2022-03-24 12:27:27 -07:00
|
|
|
"strict": true,
|
2022-04-15 17:54:40 -07:00
|
|
|
"module": "es2022",
|
2022-05-26 11:51:59 -07:00
|
|
|
"lib": ["es2019", "es6", "dom", "webworker"],
|
2022-02-26 16:13:35 -08:00
|
|
|
"target": "es5",
|
|
|
|
"jsx": "react",
|
|
|
|
"allowJs": true,
|
|
|
|
"moduleResolution": "node",
|
2022-03-25 14:39:26 -07:00
|
|
|
"resolveJsonModule": true,
|
2022-04-05 13:01:16 -07:00
|
|
|
"esModuleInterop": true,
|
2022-03-15 06:48:18 -07:00
|
|
|
"typeRoots": [ "./types", "./node_modules/@types"]
|
2022-10-14 13:31:40 -07:00
|
|
|
},
|
|
|
|
"ts-node": {
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "CommonJS"
|
|
|
|
}
|
2022-07-06 09:26:44 -07:00
|
|
|
}
|
2022-02-26 16:13:35 -08:00
|
|
|
}
|