mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-13 06:30:20 +08:00
29 lines
475 B
JSON
29 lines
475 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"ES2022"
|
|
],
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"types": [
|
|
"node",
|
|
"vscode"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|