mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-15 10:02:47 +03:00
23 lines
530 B
JSON
23 lines
530 B
JSON
{
|
|
"include": ["*.ts"],
|
|
"exclude": ["node_modules", "dist", "@types"],
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"module": "ESNext",
|
|
"noImplicitAny": true,
|
|
"target": "ESNext",
|
|
"pretty": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"strict": false,
|
|
"noErrorTruncation": true,
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*" : ["./node_modules/@types/*", "*"]
|
|
}
|
|
}
|
|
} |