mirror of
https://github.com/silvanshade/tower-lsp-web-demo.git
synced 2025-01-22 19:56:04 +00:00
21 lines
452 B
JSON
21 lines
452 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["DOM", "ES2022"],
|
|
"module": "ES2022",
|
|
"moduleResolution": "node",
|
|
"newLine": "lf",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
// "sourceMap": true,
|
|
},
|
|
"exclude": ["."],
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
},
|
|
},
|
|
}
|