2022-08-10 04:41:44 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-03-15 06:42:14 +03:00
|
|
|
"lib": ["DOM"],
|
2023-02-19 03:37:58 +03:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-08-10 04:41:44 +03:00
|
|
|
"esModuleInterop": true,
|
2023-02-19 03:37:58 +03:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "ESNext",
|
2022-08-10 04:41:44 +03:00
|
|
|
"moduleResolution": "node",
|
2023-03-15 06:42:14 +03:00
|
|
|
"checkJs": true,
|
2023-02-19 03:37:58 +03:00
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictPropertyInitialization": true,
|
2023-03-15 06:42:14 +03:00
|
|
|
"target": "ES2019",
|
|
|
|
"paths": {
|
|
|
|
"@ensogl-app": ["../../target/ensogl-pack/linked-dist/index"],
|
|
|
|
"@build-cfg": ["./build.json"]
|
|
|
|
}
|
2022-08-10 04:41:44 +03:00
|
|
|
},
|
|
|
|
"ts-node": {
|
2023-03-15 06:42:14 +03:00
|
|
|
"esm": true,
|
|
|
|
"files": true
|
2022-08-10 04:41:44 +03:00
|
|
|
}
|
|
|
|
}
|