2024-09-04 10:56:29 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-09-10 07:14:45 +00:00
|
|
|
"paths": {
|
|
|
|
// Allow `import('$:/core/modules/...')` instead of `import('../../core/modules/...')`. Only works inside this project.
|
2024-09-04 10:56:29 +00:00
|
|
|
"$:/core/*": ["./core/*"]
|
|
|
|
},
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"strict": false,
|
|
|
|
|
|
|
|
"allowJs": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"declaration": true,
|
2024-09-10 08:13:59 +00:00
|
|
|
"declarationDir": "types/generated",
|
2024-09-04 10:56:29 +00:00
|
|
|
"declarationMap": true,
|
2024-09-10 07:14:45 +00:00
|
|
|
"emitDeclarationOnly": true,
|
2024-09-04 10:56:29 +00:00
|
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
|
|
"module": "Node16",
|
2024-09-10 08:13:59 +00:00
|
|
|
"outDir": "types/generated",
|
|
|
|
"rootDir": ".",
|
2024-09-04 10:56:29 +00:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"target": "ESNext"
|
|
|
|
},
|
2024-09-10 08:13:59 +00:00
|
|
|
"include": ["./core/**/*.js", "./core/**/*.d.ts", "types/tw.d.ts"],
|
|
|
|
"exclude": ["types/generated"]
|
2024-09-04 10:56:29 +00:00
|
|
|
}
|