mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-19 12:51:51 +03:00
24 lines
535 B
JSON
24 lines
535 B
JSON
{
|
|
"include": ["src/**/*"],
|
|
"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/*", "*"]
|
|
}
|
|
}
|
|
}
|