-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
35 lines (34 loc) · 1.24 KB
/
tsconfig.base.json
File metadata and controls
35 lines (34 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"files": ["node_modules/@prostojs/dye/global.d.ts"],
"compilerOptions": {
"moduleResolution": "bundler",
"esModuleInterop": true,
"target": "es2020",
"module": "ESNext",
"lib": ["ESNext", "DOM", "WebWorker", "DOM.Iterable"],
"noUnusedLocals": true,
"types": ["node"],
"declaration": true,
"emitDeclarationOnly": true,
"declarationMap": false,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": true,
"skipLibCheck": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"paths": {
"@atscript/core": ["./packages/core/src/index.ts"],
"@atscript/core/*": ["./packages/core/src/*"],
"@atscript/typescript": ["./packages/typescript/src/index.ts"],
"@atscript/typescript/utils": ["./packages/typescript/src/utils.ts"],
"@atscript/typescript/*": ["./packages/typescript/src/*"],
"@atscript/moost-validator": ["./packages/moost-validator/src/index.ts"],
"@atscript/moost-validator/*": ["./packages/moost-validator/src/*"],
"unplugin-atscript": ["./packages/unplugin/src/index.ts"],
"unplugin-atscript/*": ["./packages/unplugin/src/*"]
}
}
}