25 lines
593 B
JSON
25 lines
593 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@views/*": ["src/views/*"],
|
|
"@config": ["config/index.ts"],
|
|
"@config/*": ["config/*"],
|
|
"@types/*": ["types/*"],
|
|
"@lib/*": ["src/lib/*"]
|
|
},
|
|
"typeRoots": ["./src/types", "./node_modules/@types"],
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"noEmit": true,
|
|
"isolatedModules": true
|
|
},
|
|
"include": ["src", "types", "config"]
|
|
}
|