graphic-pixi/tsconfig.json

24 lines
593 B
JSON
Raw Normal View History

{
"compilerOptions": {
2023-12-12 15:29:52 +08:00
"baseUrl": ".",
"esModuleInterop": true,
"allowJs": false,
2023-12-13 13:29:51 +08:00
"module": "ESNext",
"target": "ESNext",
2023-12-15 17:11:03 +08:00
"moduleResolution": "node",
2023-12-18 18:03:25 +08:00
"typeRoots": ["node_modules/@types", "global.d.ts"],
2023-12-12 15:29:52 +08:00
"strict": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"lib": ["esnext", "dom"],
2023-12-15 17:11:03 +08:00
"useDefineForClassFields": true,
"declaration": true,
"allowUmdGlobalAccess": true,
"paths": {
"@jl-graphic": ["src"]
}
2023-12-12 15:29:52 +08:00
},
2023-12-14 10:28:03 +08:00
"include": ["src/**/*.ts", "global.d.ts"],
"exclude": ["node_modules", "lib"]
2023-12-12 15:29:52 +08:00
}