mirror of
https://github.com/urbit/shrub.git
synced 2024-12-19 16:51:42 +03:00
25 lines
498 B
JSON
25 lines
498 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"outDir": "./tmp",
|
|
"module": "ESNext",
|
|
"noImplicitAny": true,
|
|
"target": "ESNext",
|
|
"pretty": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"strict": false,
|
|
"noErrorTruncation": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"./dist/**/*",
|
|
"./tmp/**/*",
|
|
"rollup.config.ts"
|
|
],
|
|
"include": ["./*.ts"]
|
|
}
|