2021-01-03 14:18:22 +01:00
|
|
|
{
|
2021-01-03 20:09:35 +01:00
|
|
|
"include": ["src", "types"],
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "esnext",
|
|
|
|
"target": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"jsx": "preserve",
|
|
|
|
"baseUrl": "./",
|
|
|
|
/* paths - If you configure Snowpack import aliases, add them here. */
|
2021-01-04 23:02:31 +01:00
|
|
|
"paths": {
|
|
|
|
"@core": ["../core/src"],
|
|
|
|
"@core/*": ["../core/src/*"]
|
|
|
|
},
|
2021-01-03 20:09:35 +01:00
|
|
|
/* noEmit - Snowpack builds (emits) files, not tsc. */
|
|
|
|
"noEmit": true,
|
|
|
|
/* Additional Options */
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
// "noImplicitThis": false,
|
|
|
|
// "alwaysStrict": false,
|
|
|
|
// "strictBindCallApply": false,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
// "strictFunctionTypes": false,
|
|
|
|
// "strictPropertyInitialization": false,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"importsNotUsedAsValues": "error"
|
|
|
|
}
|
2021-01-03 14:18:22 +01:00
|
|
|
}
|